ComponentOne Data Source for Entity Framework
C1.LiveLinq.Collections Namespace / IndexedCollection<T> Class / IndexedCollection<T> Constructor / IndexedCollection<T> Constructor(IList<T>)
The collection whose elements are copied to the new instance.

In This Topic
    IndexedCollection<T> Constructor(IList<T>)
    In This Topic
    Initializes a new instance of the IndexedCollection<T> class that contains elements copied from the specified list.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal list As System.Collections.Generic.IList(Of T) _
    )
    public IndexedCollection<T>( 
       System.Collections.Generic.IList<T> list
    )

    Parameters

    list
    The collection whose elements are copied to the new instance.
    See Also